search entry: Fix property notification
authorMatthias Clasen <mclasen@redhat.com>
Sun, 17 Mar 2019 00:57:50 +0000 (20:57 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 17 Mar 2019 01:23:28 +0000 (21:23 -0400)
Both placeholder-text and activates-default were not
up to our usual standards for property notification,
and the tests complained.

gtk/gtksearchentry.c

index fd6dfed05fba35d32f11ccdcb6658c7099ce0840..45ace300e7b669f6bbd82bfed62b2038f8ecf9fa 100644 (file)
@@ -172,7 +172,11 @@ gtk_search_entry_set_property (GObject      *object,
       break;
 
     case PROP_ACTIVATES_DEFAULT:
-      gtk_text_set_activates_default (GTK_TEXT (priv->entry), g_value_get_boolean (value));
+      if (gtk_text_get_activates_default (GTK_TEXT (priv->entry)) != g_value_get_boolean (value))
+        {
+          gtk_text_set_activates_default (GTK_TEXT (priv->entry), g_value_get_boolean (value));
+          g_object_notify_by_pspec (object, pspec);
+        }
       break;
 
     default:
@@ -294,7 +298,7 @@ gtk_search_entry_class_init (GtkSearchEntryClass *klass)
                            P_("Placeholder text"),
                            P_("Show text in the entry when it’s empty and unfocused"),
                            NULL,
-                           GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
+                           GTK_PARAM_READWRITE);
 
   props[PROP_ACTIVATES_DEFAULT] =
       g_param_spec_boolean ("activates-default",